home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 May
/
EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso
/
earcd
/
comm
/
tcp
/
talkto.lha
/
TalkTo.AmIRX
< prev
next >
Wrap
Text File
|
1997-02-17
|
1KB
|
23 lines
/* TalkTo.AmIRX (C) Jari Ristiranta <jari.ristiranta@kareltek.fi> */
/* Gets the userhost of a nick in AmIRC and passes it to AmTALK */
/* */
/* Usage: /rx TalkTo.AmIRX [nick] */
/* */
/* Installation: */
/* copy TalkTo.AmIRX Your_AmIRC_dir/rexx/ */
/* copy Your_AmTALK_dir/rexx/talk c: */
/* protect c:talk +se */
/* */
/* You can make an action button like this: */
/* Label: TalkTo - Operation: /rx TalkTo.AmIRX %u */
/* */
/* Contact me: e-mail or /msg Ravelord on IRC */
/* */
options results
parse arg nick
'USERHOST 'nick
osoite=result
'echo Trying AmTALK to 'nick' at 'osoite'...'
address command 'talk 'osoite
exit